题目地址 (opens new window)
🙂 第一次练习 2020年4月3日 这个题的话,就直接记住吧,也是属于一种贪心
😄 第二次练习
解题代码
public int findContentChildren(int[] g, int[] s) { Arrays.sort(g); Arrays.sort(s); int child = 0; int cookie = 0; while(child < g.length && cookie < s.length) { if (g[child] <= s[cookie]) ++child; ++cookie; } return child; }
← LeetCode 分割数组 LeetCode 删除链表的中间节点 →